AssetWise Implementation Guide

To Enable FILESTREAM Storage in SQL Server

FILESTREAM storage can be enabled during SQL Server installation (Database Engine Configuration > FILESTREAM tab). If you skipped this step during installation, follow the steps below to enable FILESTREAM storage after installation.

  1. Open SQL Server Configuration Manager and select SQL Service Services in the navigation pane (left).
  2. In the services list (right), right-click SQL Server (MSSQLSERVER) and select Properties.

    The SQL Server (MSSQLSERVER) Properties dialog opens.

  3. On the FILESTREAM tab, turn on the following:
    • Enable FILESTREAM for Transact-SQL access
      • Enable FILESTREAM for file I/O streaming access
        • Windows share name: MSSQLSERVER - this is the default; you can change it if needed
        • Allow remote clients to have streaming access to FILESTREAM data - required if FTR Service and SQL Server are not on the same computer
  4. Click OK.
  5. In the services list, right-click SQL Server (MSSQLSERVER) and select Restart.
  6. Close SQL Server Configuration Manager.
  7. In SQL Server Management Studio, click New Query and paste the following query in the new query window that opens:
    EXEC sp_configure filestream_access_level, 2
    GO
    RECONFIGURE
    GO
    
  8. Click Execute.
SQL Server is now enabled for FILESTREAM. Next you need to create a SQL Server database with FILESTREAM enabled.